home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Taifun / Taifun 121 (1990-02-15)(Ossowski, Stefan)(DE)(PD).zip / Taifun 121 (1990-02-15)(Ossowski, Stefan)(DE)(PD).adf / DiskSpeed / MakeFile < prev    next >
Makefile  |  1989-11-08  |  1KB  |  34 lines

  1. #                          DiskSpeed v1.0
  2. #                                by
  3. #                           Michael Sinz
  4. #
  5. #             Copyright (c) 1989 by MKSoft Development
  6. #
  7. #
  8. # Yes, this is yet another disk speed testing program, but with a few
  9. # differences.  It was designed to give the most accurate results of the
  10. # true disk performance in the system.  For this reason many of
  11. # DiskSpeed's results may look either lower or higher than current disk
  12. # performance tests.
  13. #
  14. # This program was thrown together in a few hours because I needed more
  15. # accurate and consistant results for disk performance as seen from the
  16. # application's standpoint.  This program has now served its purpose and
  17. # I am now giving it to the rest of the Amiga world to play with as long
  18. # as all of the files remain together in unmodified form.  (That is, the
  19. # files DiskSpeed, DiskSpeed.info, DiskSpeed.c, DiskSpeed.doc, and
  20. # MakeFile)
  21. #
  22. # ************************************************************************
  23. #
  24. # MakeFile for DiskSpeed
  25. #
  26.  
  27. CFLAGS= -b1 -cfirst -ms0 -rr1 -v -w
  28.  
  29. DiskSpeed: DiskSpeed.o
  30.     @BLink FROM LIB:c.o+DiskSpeed.o TO DiskSpeed LIB LIB:lcsr.lib DEFINE @_main=@_tinymain SMALLDATA
  31.  
  32. DiskSpeed.o: DiskSpeed.c
  33.     @LC $(CFLAGS) DiskSpeed
  34.